home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
The World of Computer Software.iso
/
uucico_s.lha
/
includes.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-12-01
|
660b
|
39 lines
/*
* INCLUDES.H
*/
#define NAMESIZE 256
#ifdef NOTDEF
#include <exec/types.h>
#include <fcntl.h>
#include <exec/exec.h>
#include <devices/serial.h>
#include <devices/keymap.h>
#include <devices/timer.h>
#include <libraries/dos.h>
#endif
#include "protos.h" /* other system protos */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#include <signal.h>
#include "config.h" /* lib protos and config stuff */
#include "xferstat.h"
#include "uucico_protos.h" /* uucico protos */
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif